home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / gethostid.c < prev    next >
C/C++ Source or Header  |  1992-03-20  |  941b  |  49 lines

  1. /* 
  2.  * gethostid.c --
  3.  *
  4.  *    Procedure to simulate Unix gethostid system call.
  5.  *
  6.  * Copyright 1992 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/gethostname.c,v 1.4 89/10/16 14:34:26 douglis Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include <host.h>
  15. #include <string.h>
  16. #include <sys.h>
  17. #include "compatInt.h"
  18.  
  19.  
  20. /*
  21.  *----------------------------------------------------------------------
  22.  *
  23.  * gethostid --
  24.  *
  25.  *    Gets the sprite identifier of the current host.
  26.  *
  27.  * Results:
  28.  *    The sprite identifier.
  29.  *
  30.  * Side effects:
  31.  *    None
  32.  *
  33.  *----------------------------------------------------------------------
  34.  */
  35.  
  36. int
  37. gethostid()
  38. {
  39.     ReturnStatus status;
  40.     int localID;
  41.  
  42.     status = Proc_GetHostIDs(&localID, (int *) NULL);
  43.     if (status != SUCCESS) {
  44.     errno = Compat_MapCode(status);
  45.     return UNIX_ERROR;
  46.     }
  47.     return localID;
  48. }
  49.